home *** CD-ROM | disk | FTP | other *** search
- *** main.c Wed Dec 12 08:33:34 1990
- --- make/main.c Tue Dec 11 23:13:36 1990
- ***************
- *** 152,169 ****
-
- setmacro("$", "$");
-
- - while (argc && (p = strchr(*argv, '='))) {
- - char c;
- -
- - c = *p;
- - *p = '\0';
- - setmacro(*argv, p + 1);
- - *p = c;
- -
- - argv++;
- - argc--;
- - }
- -
- /*
- * By default macro values are read from the environment before
- * the makefile is scanned. That way, the makefile overrides any
- --- 152,157 ----
- ***************
- *** 182,187 ****
- --- 170,187 ----
- */
- if (doenv)
- readenv();
- +
- + while (argc && (p = strchr(*argv, '='))) {
- + char c;
- +
- + c = *p;
- + *p = '\0';
- + setmacro(*argv, p + 1);
- + *p = c;
- +
- + argv++;
- + argc--;
- + }
-
- lineno = 0; /* Any calls to error now print no line number */
-
-